local variable

英 [ˈləʊkl ˈveəriəbl] 美 [ˈloʊkl ˈveriəbl]

局部变量

计算机



双语例句

  1. Method, field, and local variable names begin with a lowercase letter, as in read().
    方法、字段和本地变量名以小写字母开头,如read()。
  2. Here the self identifier declares a thread local variable time.
    这里的self标识符声明一个线程局部变量time。
  3. LCL_NUM_VALUE is the offset from the end of the stack to the local variable num.
    LCLNUMVALUE是堆栈末端到本地变量num的偏移量。
  4. So, in this function, we are using the back chain pointer, the link register save area, and one local variable.
    所以,在这个函数中,我们使用了回链指针、链接寄存器保存区和一个本地变量。
  5. Alternatively, a servlet filter can be employed to detect and then set the thread local variable TenantID.
    或者,使用一个servlet过滤器来检测并设置线程本地变量TenantID。
  6. Well, I could add a new member field to the class and use that instead of a local variable.
    是的,我可以在类中添加一个新的成员字段,并使用这个字段而不是局部变量。
  7. A new local variable of the same type as the method's return value is created for you.
    系统将为您创建与该方法的返回值类型相同的新局部变量。
  8. This section discusses how a given process's execution flow can be changed by overwriting a local variable.
    本节将讨论如何通过重写局部变量更改给定进程的执行流程。
  9. Reusing one local variable for several logically different values or objects is bug-prone.
    为多个逻辑上不同的值或对象重用一个本地变量容易导致bug。
  10. In this case, it will offer to create a class field I, a local variable I, or a method parameter I; clicking on each of these suggestions will display the code that would be generated.
    在此例中,它将提供创建一个类字段i、一个局部变量i或一个方法参数i的建议;单击其中的每一个建议都会显示将要生成的代码。
  11. The most notable side effect of the immutable local variable is that concurrency is now easier.
    不可变本地变量最显著的副作用是很容易实现并发性。
  12. In the first step, the customer number is copied to a local variable ( 1).
    在第一步中,客户编号被复制到一个本地变量(1)。
  13. This makes it a local variable.
    这使得它成为了一个局部变量。
  14. The name of each local variable corresponds to the NAME attribute of the respective input field in the form.
    每个局部变量的名称都对应着表单中相应输入域的NAME属性。
  15. Using a local variable declared inside a sequence of instructions that is referenced only once.
    在指令序列中使用仅引用一次的局部变量。
  16. Note that each of the code blocks has kept track of a separate instance of very_local_variable.
    请注意,每个代码段都能追踪到verylocalvariable的一个单独实例。
  17. Fetch a value into the local variable using$ sth-> fetch method.
    使用$sth->fetch方法将一个值取到本地变量中。
  18. Now, we would have created a data race on the local variable sum, because multiple threads might want to update it simultaneously.
    现在,我们可能已经在局部变量的计算上制造出了一个数据竞争(datarace),因为多个线程有可能要同时更新该变量。
  19. You can write a procedure in which you do not declare a local variable.
    可以编写不声明局部变量的过程。
  20. Local variable cannot have the same name as the function containing it.
    局部变量不能与包含它的函数同名。
  21. It is important to note these fields are not shared and that each instance of Foo will have a new local variable I to initialize and work with.
    要注意的重要一点是,这些字段不是共享字段,并且Foo的每个实例都有一个要初始化和使用的新局部变量i。
  22. If you declare a local variable or function parameter with the same name as a global variable, you effectively hide the global variable.
    如果给一个局部变量或函数的参数声明的名字与某个全局变量的名字相同,那么就有效地隐藏了这个全局变量。
  23. This field will hold the value of the static local variable I in GetMessage.
    此字段将在GetMessage中保留静态局部变量i的值。
  24. It's not a local variable.
    它不是一个局部变量。
  25. This property specifies the name of the local variable for the exception.
    此属性指定异常的局部变量名。
  26. There is different form of energy, such as heat energy, sound energy and chemical energy. Local variable cannot have the same name as the function containing it.
    有不同形式的能量,如热能,声能和化学能。局部变量不能与包含它的函数同名。
  27. The name of the local variable declared in the catch clause for the exception.
    在异常的catch子句中声明的局部变量的名称。
  28. In this class the keyword def is being used as a local variable modifier.
    在这个类中关键字def被作为局部变量修饰符使用。
  29. Look at the locals buffer, and you can see that the value of the local variable n is4.
    查看locals(局部变量)buffer,你会看到局部变量n的值为4。
  30. All local variable that are simple types display their values in this buffer.
    所有简单类型的局部变量的值都会在这个buffer中显示。